-
-
Notifications
You must be signed in to change notification settings - Fork 595
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: escape css #8698
fix: escape css #8698
Conversation
✅ Deploy Preview for rspack ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
30f2e0b
to
f84b707
Compare
Test Compatibility Diff
Unpassed tests4 🔴 Stats chunkGroups: TODO |
Summary
fix css escape, css modules local ident should not be escaped in javascript module
.a\/b { }
The above css module contains a class a/b, if it becomes .local-a/b {}, the corresponding value in js should be local-a/b not local-a/b, local ident name in js should not be escaped
Checklist